home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / windows / fc_11f.zip / WWWFC2.MN$ < prev    next >
Text File  |  1992-07-15  |  2KB  |  91 lines

  1. Appointment Scheduling
  2.            run("Calendar.exe","")
  3.  
  4. Calculator
  5.            run("calc.exe","")
  6.  
  7. Cardfile
  8.            run("cardfile.exe","")
  9.  
  10. Character Mapper
  11.            Run("charmap.exe","")
  12.  
  13. C&lipboard
  14.         errormode(@off)
  15.         terminate(winactivate("Clipboard"),"","") ;Already Running
  16.         errormode(@cancel)
  17.  
  18.         run("Clipbrd.exe","")
  19.  
  20.  
  21. Clock
  22.         run("clock.exe","")
  23.  
  24. MultiMedia 
  25.  Multimedia Player
  26.         run("mplayer.exe","")
  27.  Sound Recorder
  28.            run("soundrec.exe","")
  29.  
  30. Notepad Editor
  31.            run("notepad.exe","")
  32.  
  33. Packager
  34.         run("packager.exe","")
  35.  
  36. Paint Brush
  37.            run("pbrush.exe","")
  38.  
  39. Program Manager
  40.            run("progman.exe","")
  41.  
  42. Recorder
  43.            run("recorder.exe","")
  44.  
  45. Terminal
  46.            run("terminal.exe","")
  47.  
  48. Windows Help
  49.            run("winhelp.exe","")
  50.  
  51. Write
  52.            run("write.exe","")
  53.  
  54. |Configure System
  55.  Control &Panel
  56.         errormode(@off)
  57.         terminate(winactivate("Control Panel"),"","")
  58.         errormode(@cancel)
  59.         run("control.exe","")
  60.  Print Manager
  61.            run("printman.exe","")
  62.  
  63.  SysEdit
  64.            run("sysedit.exe","")  ;takes care of itself
  65.  
  66.  Windows Setup
  67.         DirChange(DirWindows(0))
  68.         run("setup.exe","")
  69.         drop(a)
  70.  
  71.  Registration Editor
  72.   Normal Mode
  73.            run("regedit.exe","")
  74.   Advanced Mode
  75.            run("regedit.exe","/v")
  76.  
  77. _DOS
  78.         run(environment("COMSPEC"),"")
  79. _PIF Edi&t...
  80.         a=CurrentFile()
  81.         if FileExtension(a)=="PIF" then goto PIF2
  82.         a=FileItemize("*.PIF")
  83.         if a==""  then DirChange(FilePath(FileLocate("_default.pif")))
  84.                   then a=FileItemize("*.PIF")
  85.         if a==""  then DirChange(DirWindows(0))
  86.                   then a=FileItemize("*.PIF")
  87.         if a!="" then a=ItemSelect("Choose a PIF File to edit",a," ")
  88.         :PIF2
  89.         run("pifedit.exe",a)
  90.         exit
  91.